home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource4
/
295_01
/
bool.h
< prev
next >
Wrap
Text File
|
1989-12-30
|
316b
|
16 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "bool.h 1.2 - 89/10/31" */
/* boolean definitions */
#ifndef BOOL_H /* prevent multiple includes */
#define BOOL_H
typedef unsigned char bool;
#define TRUE ((bool)1)
#define FALSE ((bool)0)
#endif /* #ifndef BOOL_H */